home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #07 (1992-12)(Diesel)(DE).zip / Purity #07 (1992-12)(Diesel)(DE).adf / Texte / Neptun.DOCe < prev    next >
Text File  |  1992-10-31  |  8KB  |  173 lines

  1.  
  2.     #####################################################################
  3.     #                                                                   #
  4.     #                          N E P T U N                              #
  5.     #                                                                   #
  6.     #        an Ascii-Display-Program written in PCQ-Pascal V1.2        #
  7.     #                                                                   #
  8.     #####################################################################
  9.  
  10.     © 1991/92 by Andreas Neumann
  11.  
  12.     old Versions   :    V 1.00      (27.-29. 12. 1991)
  13.                         V 1.01      (30.12.1991)
  14.  
  15.                         - Filerequester improved
  16.                         - Scrolling became a little bit faster
  17.  
  18.                         V1.10       (completed 26.01.1992)
  19.  
  20.                         - Fixed some bugs
  21.                         - New function (Info-Line)
  22.                         - Scrolling became a little bit faster
  23.                         - Included second percent figure, now
  24.                           regarding also number of read rows
  25.  
  26.                         V1.11       (22./23.02.1992)
  27.  
  28.                         - Autoscrolling via mousebuttons
  29.                         - Scrolling became faster
  30.  
  31.                         V1.12       (29.03.1992)
  32.  
  33.                         - Colordisplay corrected
  34.                         - Short delay after Filerequester
  35.                         - ESC after About does not quit anymore
  36.  
  37.                         V1.20       (07.04.1992)
  38.  
  39.                         - Neptun uses now the REQ-Library's requester
  40.                         - Neptun can now be used from the workbench
  41.                           as a tooltype
  42.                         - Optimized some code
  43.  
  44.                         V1.21       (13.04.1992)
  45.  
  46.                         - Fixed a small bug in color display
  47.  
  48.                         V1.30       (21.04.1992)
  49.  
  50.                         - One of the main problems concerning fast
  51.                           display was that Neptun always used 3 bitplanes
  52.                           (8 colors). Now Neptun uses up to three planes
  53.                           but only if they are really needed. This
  54.                           makes the loading slower but the displaying
  55.                           rather fast.
  56.                         - Fixed some small bugs in color display
  57.  
  58.                         V1.31       (20.05.1992)
  59.  
  60.                         - Color display was strongly improved
  61.                         - Some optimizing was done
  62.  
  63.                         V1.32       (27.05.1992)
  64.  
  65.                         - Some small bugs in color display were removed
  66.  
  67.                         V1.40       (27.05.1992 evening)
  68.  
  69.                         - Up to this version I used to handle
  70.                           ANSI - sequenzes by myself. This is the reason
  71.                           why there were a lot of problems for example
  72.                           in color display because these sequenzes
  73.                           may exist in lots of various formats.
  74.                           Now I use console.device. This is slower
  75.                           but I linked this method to my old method
  76.                           of direct graphical output which offer
  77.                           - from my point of view - a very
  78.                           acceptable speed. And, of course, the source
  79.                           is very shorter and there will no longer be
  80.                           any problems concerning color display
  81.                           except you will move backwards in a color
  82.                           sequence....
  83.                         - The functions of the mousebuttons are now
  84.                           also available by using the keys "PG UP" and
  85.                           "PG DOWN".
  86.  
  87.                         V1.41       (31.07.1992)
  88.  
  89.                         - To decide if colordisplay would be necessary,
  90.                           Neptun searched up to this day for an
  91.                           ESC-sequence. Now it also accepts CSI-sequences.
  92.  
  93.     latest Version :    V1.50       (10.08.1992)
  94.  
  95.                         - Up from now it's possible to mark some pieces
  96.                           of the text. To do so, simply press "M", then mark
  97.                           the beginning and the end of the text to be
  98.                           marked. Both has to be in the same row. Now
  99.                           the text is marked. This can be done up to 50
  100.                           times but scrolling is getting slower each time
  101.                           you set a mark. This function was an idea of
  102.                           Stefan Salewski.
  103.                         - After pressing "F" you can enter a string which
  104.                           Neptun shall search for you in the text.
  105.                           If he finds something, it will be displayed in
  106.                           the top row of the screen. If not the screen
  107.                           flashes.
  108.                           Pressing "N", Neptun searches automatically
  109.                           for the next appearance of the string.
  110.                         - The key "G" implies a function to jump fast
  111.                           and easy to a certain line. The top row of the
  112.                           text has the number 0.
  113.                         - Both, the search- and the gotofunction are
  114.                           trying to display the specified row in the top
  115.                           row of the screen. If the remaining text is
  116.                           too short to fill the rest of the screen with,
  117.                           Neptun scrolls back the text, so it is
  118.                           possible that the specified row isn't found in
  119.                           the top of the screen.
  120.  
  121.  
  122.     NEPTUN may be freely copied. Fees may only be charged because of
  123.     the costs of material. Commercial use is prohibited !
  124.  
  125.     NEPTUN was developed for the Purity Library, the one and only
  126.     Pascal Library on Amiga !
  127.  
  128.     NEPTUN uses the req.library and Nico Francois' powerpacker.library.
  129.     Thanks a lot !
  130.  
  131.     First of all, let's talk about the bad stuff .....
  132.  
  133.     - NEPTUN is compared with MuchMore still very slow and the
  134.       code is too large.
  135.  
  136.     Okay, i believe we're through.....
  137.  
  138.     Now the good things :
  139.  
  140.     - NEPTUN is able to load Packed Files and to display Color Sequences
  141.  
  142.     - NEPTUN searches for the PowerPacker.Library in the LIBS:-Directory.
  143.       If it can't find it, NEPTUN still can be used to display
  144.       unpacked Ascii-Files.
  145.  
  146.     - you can load packed texts and save it unpacked
  147.  
  148.     - mono-colored texts are displayed pretty fast
  149.  
  150.     Of course many things can easily be improved. And - they will be
  151.     improved. But this is Version 1 !
  152.     NEPTUN is used by typing
  153.                              "Neptun [Filename]"
  154.     on the CLI.
  155.  
  156.     If someone has serious critics or someone loves NEPTUN or wants
  157.     to pay me some money for this great tool (hehehe), then he may
  158.     write to
  159.  
  160.                         NEUDELSoft
  161.                         c/o Andreas Neumann
  162.                         Auf dem Ruhbühl 151
  163.                     D-W 7997 Immenstaad
  164.                         Germany
  165.  
  166.     That's all folks ! See you later (in Version 2.0)...
  167.  
  168.     Thanx go to Bernd "Diesel" Künnen for his constructive propositions
  169.     and Electronic Arts' IFF-Disc without which I would not have finished
  170.     the workbench option (what an idea : getting the lock out of the
  171.     argument list...).
  172.  
  173.